home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 6.st / INSTSST.ARC / INSTSST.TXT < prev   
Encoding:
Text File  |  1989-10-16  |  5.8 KB  |  133 lines

  1.  
  2. Installing a ScoreST Printer Driver
  3.  
  4. ScoreST comes configured for an Epson or Epson-compatible printer.  If
  5. you don't have an Epson printer, consult your printer owner's manual
  6. to see if it accepts Epson commands.  In particular, see if it
  7. supports the following commands:
  8.  
  9. * ESC * 4: Print a line of graphics.
  10.  
  11. * ESC Z: Print a line of quadruple-density graphics.
  12.  
  13. * ESC J n: Immediate n/216-inch line feed.
  14.  
  15. If so, ScoreST is already configured to use your printer and you don't
  16. have to worry about installing a printer driver.  Otherwise, read on.
  17. (And be sure to have your printer's owner's manual handy when
  18. installing your printer.)
  19.  
  20. ScoreST can print in two styles: Draft for fast drawings of works in
  21. progress, and Final for completed scores.  In Draft mode, each dot
  22. (pixel) is printed once and 640 dots are printed on each line.  In
  23. Final mode, each dot (pixel) is printed three times for a total of
  24. 1920 dots per line.  In addition, each line is printed twice, with the
  25. second pass offset vertically from the first by the smallest possible
  26. distance.  Final mode produces a dark, dense score, but is
  27. considerably slower than Draft mode.
  28.  
  29. Running InstSST
  30.  
  31. Your printer is configured using INSTSST.TOS, supplied with ScoreST.
  32. INSTSST creates a file called SCOREST.CFG, which ScoreST reads to
  33. determine which commands should be sent to your printer.
  34.  
  35. To run INSTSST, double-click on INSTSST.TOS.  INSTSST will ask you a
  36. series of questions about the commands your printer requires to
  37. perform certain actions.  While running INSTSST, you may use the [Esc]
  38. key to cancel out.
  39.  
  40. When defining printer commands, INSTSST will ask you to provide two
  41. kinds of information: the length of the printer command in bytes and
  42. the bytes that make up the printer command.
  43.  
  44. The command length can be entered in one of three forms:
  45.  
  46. -- In decimal, using decimal digits without leading zeroes, e.g.,
  47. 123, 17, 1.
  48.  
  49. -- In octal (base 8), using the digits 0 - 7 with 0 as the first
  50. digit, e.g., 077, 03, 0.
  51.  
  52. -- In hexadecimal (base 16), using the digits 0 - f (or F) where the
  53. number is preceded by "0x" or "0X"; e.g., 0x5, 0XA, 0x1f
  54.  
  55. When prompting for a command length, INSTSST displays the current
  56. length (initially 0).  This value can be retained by pressing [Return]
  57. when the prompt for the new value appears.
  58.  
  59. Each printer command is limited to 20 bytes.  INSTSST will warn you if
  60. you attempt to enter a length that exceeds this limit.
  61.  
  62. The bytes that make up the printer commands can be entered in any of
  63. the formats described above for the command length or in the
  64. following:
  65.  
  66. -- In character form, using any ASCII character preceded by a single
  67. quote ('), e.g., '{, 'x, '\$.
  68.  
  69. -- In control-character form, using ASCII characters A through _
  70. (underscore), preceded by a caret (^).  The binary value of the ASCII
  71. character is decreased by hexadecimal 40 to produce the value of the
  72. byte, e.g., ^[, ^G, ^A.
  73.  
  74. When prompting for a printer command byte, INSTSST displays the
  75. current value of that byte (initially 0).  This value can be retained
  76. by pressing [Return] when prompted for a new value.
  77.  
  78. Printer Configuration
  79.  
  80. Some of the printer commands used by ScoreST are optional, meaning
  81. they may or may not be required for your printer.  They can be
  82. eliminated by specifying a command length of 0 when prompted by
  83. INSTSST.  INSTSST will ask you for the following information:
  84.  
  85. -- An optional printer initialization command, which prepares the
  86. printer for graphics.  This command is sent to the printer before
  87. printing starts when you select Print (Draft) or Print (Final) from
  88. the File menu in ScoreST.
  89.  
  90. -- An optional printer reset command, which restores the printer to
  91. normal mode after printing graphics.  ScoreST sends this command to
  92. the printer when printing is complete.
  93.  
  94. -- A required line start command, which is sent at the start of each
  95. line of eight-bit graphics.  This command may or may not be followed
  96. by a count of the number of bytes in the line; see below.
  97.  
  98. -- An indication of whether ScoreST should append a byte count to the
  99. line start command.  If so, the number of bytes in each line will be
  100. sent to the printer in binary after the line start command is sent.
  101. The number of bytes will be sent as a two-byte integer.  The byte
  102. ordering of this integer may be specified; see below.  If your printer
  103. expects a byte count in a place other than following the line start
  104. command or it expects the count in a form other than binary, you may
  105. want to hard-code the byte count yourself in the line start command.
  106. For Draft mode, this will be 640, and for Final mode, 1920.
  107.  
  108. -- The byte ordering of the line byte count (see above).  In a
  109. two-byte integer, bytes can be ordered with the most significant byte
  110. first or last.
  111.  
  112. -- An optional line end command, which is sent at the end of each
  113. line of eight-bit graphics.
  114.  
  115. -- A command required only in Final mode to advance the paper in
  116. increments of 1/216-inch.  The distance is sent in a single binary
  117. byte following the command.  If your printer doesn't support such a
  118. command, leave it empty.  This command is sent between successive line
  119. passes in Final mode.
  120.  
  121. -- An optional command to advance the printer to the next page.
  122. ScoreST normally prints 792 graphic lines per page, which completely
  123. fills an 11" page with a dot height of 1/72-inch.  You need to supply
  124. this command only if your paper height is other than 11" or your
  125. printer's dot height is other than 1/72-inch.
  126.  
  127. INSTSST creates a file called SCOREST.CFG with the information you
  128. supply about your printer.  ScoreST searches for this file in three
  129. places and reads the first one it finds in the current folder, in a
  130. folder called SCOREST in the root directory of the current disk or in
  131. the root directory of the current disk itself.  If ScoreST can't find
  132. SCOREST.CFG, it displays a warning and disables printing.
  133.